home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C++ / Snippets / QD3D Juggler / Juggler Sources / CClubMaker.h < prev    next >
Encoding:
Text File  |  1995-12-27  |  344 b   |  21 lines  |  [TEXT/CWIE]

  1. //
  2. //    CClubMaker.h
  3. //
  4. //    class CClubMaker
  5. //    A juggling club.
  6. //    Implimented as a Tri-Grid.
  7. //
  8. //    by James Jennings
  9. //    Started November 23, 1995
  10. //
  11.  
  12. #pragma once
  13.  
  14. #include "CObjectMaker.h"
  15.  
  16. class CClubMaker : public CObjectMaker<TQ3GeometryObject> {
  17. public:
  18.     virtual    void    Make();
  19.             void    GetCenterOfGravity(TQ3Point3D &com);    // not used yet
  20. };
  21.